home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / encodings / iso8859_5.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  3KB  |  133 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. """ Python Character Mapping Codec generated from '8859-5.TXT' with gencodec.py.
  5.  
  6. Written by Marc-Andre Lemburg (mal@lemburg.com).
  7.  
  8. (c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
  9. (c) Copyright 2000 Guido van Rossum.
  10.  
  11. """
  12. import codecs
  13.  
  14. class Codec(codecs.Codec):
  15.     
  16.     def encode(self, input, errors = 'strict'):
  17.         return codecs.charmap_encode(input, errors, encoding_map)
  18.  
  19.     
  20.     def decode(self, input, errors = 'strict'):
  21.         return codecs.charmap_decode(input, errors, decoding_map)
  22.  
  23.  
  24.  
  25. class StreamWriter(Codec, codecs.StreamWriter):
  26.     pass
  27.  
  28.  
  29. class StreamReader(Codec, codecs.StreamReader):
  30.     pass
  31.  
  32.  
  33. def getregentry():
  34.     return (Codec().encode, Codec().decode, StreamReader, StreamWriter)
  35.  
  36. decoding_map = codecs.make_identity_dict(range(256))
  37. decoding_map.update({
  38.     161: 1025,
  39.     162: 1026,
  40.     163: 1027,
  41.     164: 1028,
  42.     165: 1029,
  43.     166: 1030,
  44.     167: 1031,
  45.     168: 1032,
  46.     169: 1033,
  47.     170: 1034,
  48.     171: 1035,
  49.     172: 1036,
  50.     174: 1038,
  51.     175: 1039,
  52.     176: 1040,
  53.     177: 1041,
  54.     178: 1042,
  55.     179: 1043,
  56.     180: 1044,
  57.     181: 1045,
  58.     182: 1046,
  59.     183: 1047,
  60.     184: 1048,
  61.     185: 1049,
  62.     186: 1050,
  63.     187: 1051,
  64.     188: 1052,
  65.     189: 1053,
  66.     190: 1054,
  67.     191: 1055,
  68.     192: 1056,
  69.     193: 1057,
  70.     194: 1058,
  71.     195: 1059,
  72.     196: 1060,
  73.     197: 1061,
  74.     198: 1062,
  75.     199: 1063,
  76.     200: 1064,
  77.     201: 1065,
  78.     202: 1066,
  79.     203: 1067,
  80.     204: 1068,
  81.     205: 1069,
  82.     206: 1070,
  83.     207: 1071,
  84.     208: 1072,
  85.     209: 1073,
  86.     210: 1074,
  87.     211: 1075,
  88.     212: 1076,
  89.     213: 1077,
  90.     214: 1078,
  91.     215: 1079,
  92.     216: 1080,
  93.     217: 1081,
  94.     218: 1082,
  95.     219: 1083,
  96.     220: 1084,
  97.     221: 1085,
  98.     222: 1086,
  99.     223: 1087,
  100.     224: 1088,
  101.     225: 1089,
  102.     226: 1090,
  103.     227: 1091,
  104.     228: 1092,
  105.     229: 1093,
  106.     230: 1094,
  107.     231: 1095,
  108.     232: 1096,
  109.     233: 1097,
  110.     234: 1098,
  111.     235: 1099,
  112.     236: 1100,
  113.     237: 1101,
  114.     238: 1102,
  115.     239: 1103,
  116.     240: 8470,
  117.     241: 1105,
  118.     242: 1106,
  119.     243: 1107,
  120.     244: 1108,
  121.     245: 1109,
  122.     246: 1110,
  123.     247: 1111,
  124.     248: 1112,
  125.     249: 1113,
  126.     250: 1114,
  127.     251: 1115,
  128.     252: 1116,
  129.     253: 167,
  130.     254: 1118,
  131.     255: 1119 })
  132. encoding_map = codecs.make_encoding_map(decoding_map)
  133.